body {
  padding: 0;
  margin: 0;
}
.area-top-bar {
  width: 100%;
  height: 140px;
  background-color: #F1F1F3;
}
.area-top-bar-container {
  max-width: 1200px;
  width: 100%;
  height: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: left;
}

.area-bottom-bar-container {
  max-width: 1200px;
  width: 100%;
  height: 30%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: right;
  border-top: 1px solid #D6D6D7;
}

.area-tip-text {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  color: #252525;
}
.hide-btn {
  outline: none;
  border: none;
  width: 24px;
  height: 24px;
  background: url('https://jt.dangbei.net/img/dbgw/20230717/area-close.png') no-repeat center;
  cursor: pointer;
  margin: 0 0 0 10px;
}
.continue-btn:hover{
     color:#999;
}
.continue-btn {
  outline: none;
  border: none;
  width: 105px;
  height: 40px;
  border-radius: 6px;
  padding: 0;
  font-size: 16px;
  line-height: 40px;
  color: #666;
  cursor: pointer;
  margin-right: 40px;
  margin-left: 30px;
}

.new-btn:hover{
     color:#FFF;
}
.new-btn {
  outline: none;
  border: none;
  width: 105px;
  height: 40px;
  border-radius: 6px;
  padding: 0;
  font-size: 16px;
  line-height: 40px;
  color: #FFF;
  cursor: pointer;
  background: #333;
   text-align:center;
}


.area-selector-group {
  width: 250px;
  height: 40px;
  position: relative;
  margin: 0 24px 0 auto;
}
.area-selector-group .area-selector {
  width: 100%;
  height: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 20px;
  box-sizing: border-box;
  background: #FFF;
}
.area-selector-group .area-selector .arrow-icon {
  display: block;
  width: 24px;
  height: 24px;
  background: url('https://jt.dangbei.net/img/dbgw/20230717/area-arrow.png') no-repeat center;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%) scaleY(-1);
}
.area-selector-group .area-selector.open .arrow-icon {
  transform: translateY(-50%);
}
.area-selector-group .area-selector .selector-text {
  font-size: 14px;
  line-height: 20px;
  color: #008CF0;
  display: inline-flex;
  align-items: center;
}
.area-selector-group .area-selector .selector-text:not(:empty):before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('https://jt.dangbei.net/img/dbgw/20230717/area-check.png') no-repeat center;
  margin-right: 4px;
}
.area-select-option-box {
  box-sizing: border-box;
  width: 100%;
  height: 288px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 8px;
  overflow: auto;
  background-color: #fff;
  margin-top: 6px;
  visibility: hidden;
}
.area-select-option-box.open {
  visibility: visible;
}
.area-select-option-box .area-option {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #252525;
  border-radius: 4px;
  box-sizing: border-box;
  padding-left: 12px;
  cursor: pointer;
}
.area-select-option-box .area-option::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.area-select-option-box .area-option + .area-option {
  margin-top: 8px;
}
.area-select-option-box .area-option.active {
  background-color: rgba(0, 140, 240, 0.1);
  color: #008CF0;
}
.area-select-option-box .area-option.active::before {
  background: url('https://jt.dangbei.net/img/dbgw/20230717/area-check.png') no-repeat center;
}
